home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 8866 < prev    next >
Encoding:
Text File  |  1996-08-05  |  871 b   |  35 lines

  1. Path: news.bridge.net!news
  2. From: David Byrden <100101.2547@compuserve.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: What is "void CAClass::CBClass::functionname()" ????
  5. Date: 27 Feb 1996 02:53:52 GMT
  6. Organization: self-employed
  7. Message-ID: <4gtro0$20b@news.bridge.net>
  8. References: <leetn-2602961058380001@192.43.251.144>
  9. NNTP-Posting-Host: ppp-mia1-52.bridge.net
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  14.  
  15.  
  16. >> What is "void CAClass::CBClass::functionname()
  17.  
  18.  
  19.     Class CBClass is "nested" within CAClass. That is, it is declared 
  20. witin the declaration of CAClass. Effectively, it is in CAClass' 
  21. namespace. There is no other special relationship between them.
  22.  
  23.  
  24.  class CAClass{
  25.      class CBClass{
  26.          functionname() ;
  27.      }
  28. } ;
  29.  
  30.  
  31.  
  32.                                  David
  33.  
  34.  
  35.